home *** CD-ROM | disk | FTP | other *** search
/ Champak 61 / Volume 61 - JOGO DISK .iso / Games / espelho-magico.swf / scripts / DefineButton2_174 / BUTTONCONDACTION on(release).as
Text File  |  2008-03-17  |  356b  |  15 lines

  1. on(release){
  2.    if(_root.play_b)
  3.    {
  4.       if(_root.girl_mc.hair_mc._currentframe == _root.girl_mc.hair_mc._totalframes)
  5.       {
  6.          _root.girl_mc.hair_mc.gotoAndStop(2);
  7.       }
  8.       else
  9.       {
  10.          _root.girl_mc.hair_mc.nextFrame();
  11.       }
  12.       _root.girl_mc.light_mc.gotoAndStop(_root.girl_mc.hair_mc._currentframe);
  13.    }
  14. }
  15.